home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #9 / K-CD-9-2002.ISO / Freedom Force / data1.cab / System_Files / goal.py < prev    next >
Encoding:
Text File  |  2002-03-21  |  2.2 KB  |  83 lines

  1. #-----------------------------------------------------------------
  2. # Module: goal
  3. #   goal creation helpers
  4. #-----------------------------------------------------------------
  5.  
  6. import _ai
  7.  
  8. #-----------------------------------------------------------------
  9. # Goal priorities
  10.  
  11. PRI_ZERO = _ai.PRI_ZERO
  12. PRI_LOW = _ai.PRI_LOW
  13. PRI_MED = _ai.PRI_MED
  14. PRI_HI = _ai.PRI_HI
  15. PRI_ALWAYS = _ai.PRI_ALWAYS
  16.  
  17. #-----------------------------------------------------------------
  18. # Goal generators
  19.  
  20. def Move( dest, command = 'move', radius = 1.0, speed = 0.0 ):
  21.     return ('CMoveGoal',( dest, command, radius, speed ) )
  22.  
  23. def Wander():
  24.     return ('CWanderGoal', '' )
  25.  
  26. def Null():
  27.     return ('CNullGoal', '' )
  28.  
  29. def CollectThrowable( object ):
  30.     return CollectObjToObjectList( AttackThrowableList(), object)
  31.  
  32. def CollectObjToObjectList( attacklist, object ):
  33.     return ('CCollectObjToObjectGoal', attacklist, object )
  34. def CollectObjToPointList( attacklist, point ):
  35.     return ('CCollectObjToPointGoal', attacklist, point )
  36.  
  37.  
  38. def KillClass( classFlags ):
  39.     return ('CKillGoal', AttackClassList(classFlags) )
  40.  
  41. def KillObjectsTuple( names ):
  42.     return ('CKillGoal', AttackObjectList(names) )
  43.  
  44. def KillObjects( *names ):
  45.     return ('CKillGoal', AttackObjectList(names) )
  46.  
  47. def KillBuildings():
  48.     return ('CKillGoal', AttackBuildingList() )
  49.  
  50. def CollectThrowableToObject(object):
  51.     return ('CCollectObjGoal', (object, (0,0,0)) )
  52.  
  53. def CollectThrowableToPoint(point):
  54.     return ('CCollectObjGoal', ('', point) )
  55.  
  56. def RoutObjectsTuple( names ):
  57.     return ('CRoutGoal', AttackObjectList(names) )
  58.  
  59. def RoutObjects( *names ):
  60.     return ('CRoutGoal', AttackObjectList(names) )
  61.  
  62.  
  63. #-----------------------------------------------------------------
  64. # Attack list generators, advanced users only...
  65.  
  66. def KillList( attacklist ):
  67.     return ('CKillGoal', attacklist )
  68.  
  69. def RoutList( attacklist ):
  70.     return ('CRoutGoal', attacklist )
  71.  
  72. def AttackClassList( classFlags ):
  73.     return ('CAttackClassList', classFlags )
  74.  
  75. def AttackObjectList( names ):
  76.     return ('CAttackObjectList', names )
  77.  
  78. def AttackBuildingList():
  79.     return ('CAttackBuildingList', None )
  80.  
  81. def AttackThrowableList():
  82.     return ('CAttackThrowableList', None )
  83.